/*Cible les éléments a qui possèdent 
un attribut target*/
a[target]{
    background-color: orange;
}

/*Cible les éléments p qui possèdent 
un attribut class*/
p[class]{
    font-weight: bold;
}
 /*Cible les éléments a avec 
 un attribut rel de valeur nofollow*/
a[rel="nofollow"]{
    text-decoration: line-through;
}